cognitoforms-wordpress/tsconfig.json

19 lines
300 B
JSON
Raw Normal View History

{
"compilerOptions": {
"outDir": "./build/",
"target": "es5",
"jsx": "react",
"module": "commonjs",
"noImplicitAny": true,
"allowJs": true,
2022-01-14 23:21:40 -05:00
"allowSyntheticDefaultImports": true,
"paths": {
"@/*": ["./src/*"]
},
"resolveJsonModule": true
},
"include": [
"src"
]
}