18 lines
335 B
JSON
18 lines
335 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"rootDir": "src",
|
|
"module": "commonjs",
|
|
"target": "es2015",
|
|
"sourceMap": true,
|
|
"jsx": "react",
|
|
"allowSyntheticDefaultImports": true,
|
|
"lib": ["es2017", "dom"],
|
|
"strict": true
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|