19 lines
391 B
JSON
19 lines
391 B
JSON
{
|
|
"extends": "@tsconfig/strictest/tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": ["ESNext"],
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"outDir": "./build",
|
|
"rootDir": "./src",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"#src/*": ["./src/*"]
|
|
},
|
|
"noEmit": true,
|
|
"exactOptionalPropertyTypes": false,
|
|
"checkJs": false
|
|
}
|
|
}
|