22 lines
463 B
JSON
22 lines
463 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"forceConsistentCasingInFileNames": false,
|
|
"inlineSourceMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"noImplicitAny": false,
|
|
"noUnusedLocals": true,
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"lib": [
|
|
"ES2021.String"
|
|
]
|
|
},
|
|
|
|
"include": ["src"],
|
|
"exclude": ["node_modules"]
|
|
} |