more init config stuff
parent
dbc08d2eac
commit
ea01c2838f
|
@ -0,0 +1,12 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>AnimationTool</title>
|
||||
<meta charset="utf-8">
|
||||
|
||||
<link rel="icon" href="/favicon.ico">
|
||||
<link rel="stylesheet" href="assets/stylesheets/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<script src="bundle.js"></script>
|
||||
</body>
|
||||
</html>
|
|
@ -20,8 +20,12 @@
|
|||
"homepage": "https://github.com/MoonsideGames/AnimationTool#readme",
|
||||
"devDependencies": {
|
||||
"prettier": "^1.18.2",
|
||||
"ts-loader": "^6.1.2",
|
||||
"tslint": "^5.20.0",
|
||||
"tslint-config-prettier": "^1.18.0",
|
||||
"typescript": "^3.6.3",
|
||||
"webpack": "^4.41.0",
|
||||
"webpack-cli": "^3.3.9",
|
||||
"webpack-dev-server": "^3.8.1"
|
||||
}
|
||||
}
|
||||
|
|
1329
pnpm-lock.yaml
1329
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"target": "es6",
|
||||
"module": "commonjs",
|
||||
"lib": ["esnext", "dom"],
|
||||
"outDir": "./build",
|
||||
"noImplicitAny": true,
|
||||
"noImplicitThis": true,
|
||||
"strict": true,
|
||||
"alwaysStrict": true,
|
||||
"strictNullChecks": true,
|
||||
"strictPropertyInitialization": false,
|
||||
"sourceMap": true,
|
||||
"experimentalDecorators": true
|
||||
},
|
||||
"include": [
|
||||
"./app/**/*.ts",
|
||||
"app/declarations"
|
||||
]
|
||||
}
|
||||
|
Loading…
Reference in New Issue