20 lines
384 B
JSON
20 lines
384 B
JSON
{
|
|
"compilerOptions": {
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"module": "commonjs",
|
|
"target": "ES2020",
|
|
"lib": ["ES2020", "es6", "dom"],
|
|
"outDir": "./dist",
|
|
"sourceMap": true,
|
|
"rootDir": "src",
|
|
"strict": true,
|
|
"jsx": "react",
|
|
"noImplicitAny": false,
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"exclude": ["test"]
|
|
}
|