19 lines
300 B
JSON
19 lines
300 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./build/",
|
|
"target": "es5",
|
|
"jsx": "react",
|
|
"module": "commonjs",
|
|
"noImplicitAny": true,
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|